home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 26 / Cream of the Crop 26.iso / program / ccdl150l.zip / IO / SETBUF.C < prev    next >
C/C++ Source or Header  |  1996-06-25  |  171b  |  9 lines

  1. #include <stdio.h>
  2.  
  3. void setbuf(FILE *stream, void *buffer)
  4. {
  5.     if (buffer) 
  6.         setvbuf(stream,buffer,_IOFBF,BUFSIZ);
  7.     else
  8.         setvbuf(stream,buffer,_IONBF,BUFSIZ);
  9. }